Nevron Open Vision Documentation
Nevron.Nov Namespace / NApplication Class / BeginInvoke Method / BeginInvoke<TArg1,TArg2>(Function<TArg1,TArg2>,TArg1,TArg2) Method


In This Topic
    BeginInvoke<TArg1,TArg2>(Function<TArg1,TArg2>,TArg1,TArg2) Method
    In This Topic
    Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread).
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub BeginInvoke
        (Of TArg1,TArg2)( _
       ByVal func As Nevron.Nov.Function(Of TArg1,TArg2), _
       ByVal arg1 As TArg1, _
       ByVal arg2 As TArg2 _
    ) 
    'Usage
     
    
    Dim func As Nevron.Nov.Function(Of TArg1,TArg2)
    Dim arg1 As TArg1
    Dim arg2 As TArg2
     
    NApplication.BeginInvoke(Of TArg1, TArg2)(func, arg1, arg2)
    public static void BeginInvoke<TArg1,TArg2>( 
       Nevron.Nov.Function<TArg1,TArg2> func,
       TArg1 arg1,
       TArg2 arg2
    )

    Parameters

    func
    arg1
    arg2

    Type Parameters

    TArg1
    TArg2
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also